home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #11 / Amiga Plus CD - 2004 - No. 11.iso / AmiSoft / Text / print / HPDJ870Src.lha / global.h < prev    next >
C/C++ Source or Header  |  2004-05-16  |  932b  |  29 lines

  1. /* HP Deskjet 870C */
  2.  
  3. /* Headers */
  4.  
  5. #include <exec/types.h>
  6. #include <exec/nodes.h>
  7. #include <exec/lists.h>
  8. #include <exec/memory.h>
  9. #include <proto/exec.h>
  10. #include <devices/printer.h>
  11. #include <devices/prtbase.h>
  12. #include <devices/prtgfx.h>
  13.  
  14. /* Prototypes */
  15.  
  16. void SetDensity(ULONG);
  17. int  DoSpecial(UWORD *cmd, char out[], BYTE *v, BYTE *c, BYTE *f, UBYTE p[]);
  18. void numberString(UBYTE p, int x, char outputBuffer[]);
  19. int  ConvFunc(char *buf, char ch,int flag);
  20. int  Close(union printerIO *ior);
  21. int  Render(long ct, long x, long y, long status);
  22. int  DumpBWPrint(UBYTE *colors[],ULONG BufSize);
  23. int  DumpColorPrint(UBYTE *colors[],ULONG BufSize);
  24. VOID CorrectColours(UBYTE * gamma_table, UBYTE *colors[], ULONG width);
  25. void Transfer(struct PrtInfo *PInfo, ULONG y, UBYTE *colors[], UWORD RowSize, UWORD NumColorBuf);
  26. LONG StripWhiteSpace(UBYTE * source,LONG size);
  27. LONG CompressMethod2(UBYTE * src, UBYTE * dest, LONG count);
  28.  
  29.